home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Electronic Messages / USEnet Digests / Hyper-Hackers Digests / Hyper-Hackers 01.31 next >
Encoding:
Text File  |  1988-06-18  |  24.7 KB  |  585 lines  |  [TEXT/ttxt]

  1.  
  2.                    Hyper-Hackers Digest Vol. 1 #31
  3.                              June 3, 1988
  4.  
  5.                               Subjects:
  6.  
  7.             Re: How to write XCMDs/XFCNs with Turbo Pascal
  8.                  Re: looking for hypercard on ibm pc
  9.         What's the current version of HyperTerm and its XCMDs?
  10.                                Animate?
  11.                               Re: (None)
  12.   Re: A good book for desscribing nitty gritty of XCMDs and language use
  13.                          Help changing cursor
  14.                    Editing Text in Scrolling Fields
  15.                      Re: CD ROMs and Video Disks
  16.                          DBMS from Hypercard?
  17.                              Re: Animate?
  18.                 Need Bibliography Management Software
  19.                        Re: Parameters to XCMDs
  20.                              Re: Animate?
  21.                              Re: Animate?
  22.                      "set name of target" problem
  23.                    Re: "set name of target" problem
  24.                    Re: "set name of target" problem
  25.          Hypercard freezes after swap to 32-bit mode and back
  26.                              Re: Animate?
  27.                              Re: Animate?
  28.                    Re: "set name of target" problem
  29.                         LSC XCMD help please!
  30.                      Help with: "Print Report..."
  31.        Re: Hypercard freezes after swap to 32-bit mode and back
  32.                         Need Airport Database
  33.                        Print Report Problem...
  34.                             Bug in HC 1.2
  35.                      More naive user help needed
  36.  
  37. ----------------------------------------------------------------------
  38. From: Newman.pasa@Xerox.COM
  39. Subject: Re: How to write XCMDs/XFCNs with Turbo Pascal
  40. Date: 23 May 88 20:17:38 GMT
  41.  
  42. Turbo Pascal requires a unit and some glue code to create XCMDs nd XFCNs, but it
  43.  
  44. also requires a special header (a resource that you plug into your Turbo Pascal
  45. application that lets you create XCMDs and XFCNs ... Turbo comes with one header
  46.  
  47. that allows you to create DAs).  I got mine (along with some documentation and
  48. examples) from the Borland forum on CompuServe.  Once on CIS, do GO BORPROGA,
  49. and look in data library 5 for a file called XCMD.SIT (Or something very close
  50. to that).
  51.  
  52. ----------------------------------------------------------------------
  53. From: dlw@hpsmtc1.HP.COM (David Williams)
  54. Subject: Re: looking for hypercard on ibm pc
  55. Date: 23 May 88 02:02:21 GMT
  56.  
  57. >hi, i'm looking for hypercard on ibm pc (ms dos).
  58. >is hypercard availible for ibm pc?
  59.  
  60. Guess again...it is from Apple and is designed to run on the Macintosh ONLY!
  61. Strategically it would not make sense for Apple to put it on DOS...you will
  62. have to wait for someone to come out with some kind of a clone...unless you
  63. want just plain hypertext buy Guide from OWL international.
  64.  
  65. ----------------------------------------------------------------------
  66. From: TDTRUE@pucc.Princeton.EDU (Thomas D. True)
  67. Subject: What's the current version of HyperTerm and its XCMDs?
  68. Date: 23 May 88 19:46:40 GMT
  69.  
  70. Does anyone now if HyperTerm or its associated XCMDS have undergone
  71. any improvements since their release last summer?  If they have,
  72. were could I get copies of the new versions.
  73.  
  74. ----------------------------------------------------------------------
  75. From: bmm@ssc-vax.UUCP (Bruce Mansfield)
  76. Subject: Animate?
  77. Date: 23 May 88 21:02:18 GMT
  78.  
  79. What is the recommended method for animating in hypercard.  I tried
  80. going to successive cards in a stack, waiting a few ticks at each
  81. card, starting from the openCard handler of the first card.  After about 6
  82. cards, however, I get the error "Too Much Recursion".  Why do I get
  83. this error and what does it mean?
  84.  
  85. ----------------------------------------------------------------------
  86. From: benjamin_kuo@pedro.UUCP (Benjamin Kuo)
  87. Subject: Re: (None)
  88. Date: 20 May 88 03:21:10 GMT
  89.  
  90.   Hard way:  Have him re-construct the stack into segments (like the Home
  91. stack and all the others).  Pretty easy if you just make "go to card" into
  92. "go to stack"... as long as you don't have too many resources.
  93.  
  94.   Easy way:  Use a packing program, such as Stuffit 1.40A and Packit III v1.3,
  95. or any of the number of about 10 chopping programs available on networks,
  96. bulletin boards, and public domain distributors.
  97.  
  98. ----------------------------------------------------------------------
  99. From: GFX@PSUVM.BITNET
  100. Subject: Re: A good book for desscribing nitty gritty of XCMDs and language use
  101. Date: 25 May 88 04:02:41 GMT
  102.  
  103. >There is no REALLY good book on XCMD writing.  The best current source
  104. >is APDA.  There is a disk with some sample XCMDs in C and Pascal with a
  105. >bit of brief on-disk documentation.
  106.  
  107. I have been introduced to XCMDs syntax by the XCMD.SIT available from
  108. Borland's forum.  The examples provided are relatively clear, except
  109. for the correct procedure one should use to pass arrays, instead of
  110. single parameters to XFCNs.
  111.  
  112. Which source would be the most appropriate and how do we get it?  Eg. ->
  113. I have been especially puzzled by the following:
  114.  
  115. PROGRAM test;
  116.  
  117.  $R-
  118.  $U-
  119.  $D PasXFCN
  120.  
  121. USES   MemTypes, QuickDraw, OSIntf, HyperXCmd;
  122.  
  123.   PROCEDURE PasXFCN(paramPtr:#XCmdPtr);     (* THE # SHOULD READ AS A CARET *)
  124.  
  125.    VAR
  126.     str    : Str255;
  127.  
  128.  $I Xcmdglue.Inc
  129.  
  130.    BEGIN;
  131.     zeroToPas(paramPtr#.params[2]#,str);    (* THE # SHOULD READ AS CARET *)
  132.     paramPtr#.returnValue := PasToZero(str);(* THE # SHOULD READ AS CARET *)
  133.    END;
  134.  
  135. BEGIN
  136. END.
  137.  
  138. If called with:       Put test(1,2) into someContainer
  139. the XFCN returns 2, as expected.  However, if the string 1,2 is in a container,
  140. a call such as:       Put test(field someField) into someOtherContainer
  141. returns garbage of the form :  W>>W>>W>> (etc.)
  142.  
  143. What happens?  Can someone tell me how to transfer arrays residing in
  144. HYPERCARD fields to an XFCN, and back?
  145.  
  146. ----------------------------------------------------------------------
  147. From: bobg+@andrew.cmu.edu (Robert Steven Glickstein)
  148. Subject: Help changing cursor
  149. Date: 25 May 88 14:56:53 GMT
  150.  
  151. I am just getting into this HyperTalk script-writing business, so forgive me if
  152. the answer to the following question is obvious.  It isn't to me.
  153.  
  154. I am writing a stack with a sort of toolbox in it.  When a user clicks on an
  155. icon in the toolbox, the cursor should change to that icon.  I have all the
  156. necessary CURS resources defined in this stack, and all the buttons in my
  157. toolbox have scripts saying "set the cursor to 21768" or some such.  The
  158. problem is that HyperCard (in the idle handler?) resets the cursor to the
  159. browsing tool almost immediately.  How do I keep this from happening; and how
  160. do I ensure that it will start happening again when I want it to?
  161.  
  162. ----------------------------------------------------------------------
  163. From: TEREBESS%UVVM.BITNET@CORNELLC.CCS.CORNELL.EDU (Paul Romaniuk)
  164. Subject: Editing Text in Scrolling Fields
  165. Date: 26 May 88 01:26:18 GMT
  166.  
  167. Can anyone suggest a solution to this problem?  I'm writing a stack that's
  168. designed to analyze sequences of nucleic acids.  These are long strings
  169. (e.g. 100-10,000 characters long) without spaces or carriage returns.  Given
  170. their size, they go into scrolling fields quite easily, and one of the
  171. functions that I want to put into the stack is the ability to enter nucleic
  172. acid sequences, and edit old sequences.  I didn't anticipate any problems, but
  173. found that trying to insert characters anywhere within a >1500 long string
  174. ties up my Mac Plus forever (no response after several minutes), and does even
  175. stranger things on my Mac II.  On the Mac II, the newly typed characters appear
  176.  in a spot entirely different from the insertion point.  However, this is a
  177. display problem -- scrolling the field "resets" the display, and shows that the
  178. new characters were in fact placed in the correct spot.  Selecting and deleting
  179.  characters on the Mac II also has some unexpected difficulties.  Sometimes
  180. everything, including characters past the insertion point disappear but again,
  181. reappear after scrolling.  At other times, all but three or four of the
  182. intended characters are deleted, but the remaining ones stay highlighted.
  183. Once again, scrolling the field "resets" the display, showing that the
  184. operation has actually been correctly performed.  This bug appears in both
  185. HyperCard 1.1 and 1.2 -- is Apple aware of it?  Is there a fix available/ in
  186. the works.  Anybody have a suggestion in the meantime?
  187.  
  188. ----------------------------------------------------------------------
  189. From: sean@cadre.dsl.PITTSBURGH.EDU (Sean McLinden)
  190. Subject: Re: CD ROMs and Video Disks
  191. Date: 23 May 88 03:56:57 GMT
  192.  
  193. >I strongly suggest that anyone looking for a videodisk driver out of
  194. >Hypercard get The Voyager Company's (213-474-0032) "The Voyager
  195. >Videostack: A Toolkit for Interactive Video".
  196.  
  197. >Truely awesome stack for videoplayer enthusiasts.
  198.  
  199. I'll second this wholeheartedly. The latest release of the software
  200. is well designed and almost instantly useful. We currently have three
  201. separate projects using this software and I would recommend it to
  202. anyone with an application for interactive videodisk.
  203.  
  204. BTW, their prices on players are the best I've seen, as well. About
  205. $800.00 for the LDP-4200 compared with $1100.00 other places.
  206.  
  207. ----------------------------------------------------------------------
  208. From: COMBS@SUMEX-AIM.Stanford.EDU (Dave Combs)
  209. Subject: DBMS from Hypercard?
  210. Date: 26 May 88 16:49:20 GMT
  211.  
  212. Can anyone offer any help with the following?  I need to find a
  213. relational DBMS for the Mac which is callable from Hypercard
  214. (presumably in an XCMD).  Does there exist, or is there information
  215. on, or even rumors about, a function-callable DBMS with the following
  216. characteristics?
  217.  
  218. 1) It supports a reasonably complete query language.
  219. 2) It supports multi-attribute keys for a particular table.  (Lots of databases
  220.    currently available seem to have problems with this one).  This is a
  221.    MAJOR requirement - for my application a system without it is useless.
  222. 3) It's not so slow that a user would complain while it grinds away for
  223.    minutes on some reasonably trivial search.
  224.  
  225. Note that I DON'T need simultaneous multi-user capability, or a particularly
  226. interesting user interface (I won't use it), or many of the other bells and
  227. whistles lots of the new systems seem to have.
  228.  
  229. ----------------------------------------------------------------------
  230. From: land@hpccc.HP.COM (David M. Land)
  231. Subject: Re: Animate?
  232. Date: 26 May 88 16:54:52 GMT
  233.  
  234. > What is the recommended method for animating in hypercard.
  235.  
  236. If you just want to pick up a piece of a card's art, write a
  237. script that selects the lasso tool, clicks at a point somewhere
  238. near the edge of the object, drags around the object (this is the
  239. hard part, if the object is complex, you have to type a lot of
  240. drag coordinates), then clicks on the selected object, and drags
  241. it along the animation path at whatever dragspeed is selected.
  242. I've seen this work on a stack called "Talk Tools," available at
  243. your friendly neighborhood BBS.  Mail me if you can't find it.
  244.  
  245. ----------------------------------------------------------------------
  246. From: peter@aucs.UUCP (Peter Steele)
  247. Subject: Need Bibliography Management Software
  248. Date: 26 May 88 17:01:09 GMT
  249.  
  250. A prof here wants some sort of program to manage bibliography and
  251. reference material. Granted, something like Reflex, MS-File, Hypercard,
  252. and a host of other programs could be "programmed" to do what he wants,
  253. but he's more interested in a "canned" utility (i.e., something that
  254. will require a minimal amount of learning). Does any such software
  255. exist out there for this sort of thing (or even something close)? Has
  256. anyone developed a Hypercard stack for this purpose? Any info would
  257. be appreciated. Thanks in advance.
  258.  
  259. ----------------------------------------------------------------------
  260. From: aisl@ur-tut (Larry Landry)
  261. Subject: Re: Parameters to XCMDs
  262. Date: 27 May 88 18:29:23 GMT
  263.  
  264. >If called with:       Put test(1,2) into someContainer
  265. >the XFCN returns 2, as expected.  However, if the string 1,2 is in a container,
  266.  
  267. >a call such as:       Put test(field someField) into someOtherContainer
  268. >returns garbage of the form :  W>>W>>W>> (etc.)
  269.  
  270. The problem is that the two lines you have pass different information into
  271. your XCMD
  272.  
  273. test(1,2) passes 2 arguments into HyperCard.  The first is '1', and the
  274.          second is '2'.
  275.  
  276. test(a) where a is '1,2' passes 1 argument into the XCMD that evaluates to
  277.          '1,2'.
  278.  
  279. Therefore, your program is not getting a valid handle for the second argument.
  280. You should instead use the line
  281.  
  282. test(item 1 of a, item 2 of a)
  283.  
  284. to pass in two arguments as you need.
  285.  
  286. ----------------------------------------------------------------------
  287. From: bobg+@andrew.cmu.edu (Robert Steven Glickstein)
  288. Subject: Re: Animate?
  289. Date: 29 May 88 04:23:34 GMT
  290.  
  291. > If you just want to pick up a piece of a card's art, write a
  292. > script that selects the lasso tool, clicks at a point somewhere
  293. > near the edge of the object, drags around the object (this is the
  294. > hard part, if the object is complex, you have to type a lot of
  295. > drag coordinates), then clicks on the selected object, and drags
  296. > it along the animation path at whatever dragspeed is selected.
  297. > I've seen this work on a stack called "Talk Tools," available at
  298. > your friendly neighborhood BBS.
  299.  
  300. The same technique is used in the "Frog Jumping" animation in the standard
  301. HyperCard help stack.  It's under "HyperTalk", somewhere...
  302.  
  303. And here's a suggestion to avoid complex drag coordinates when selecting your
  304. image.  Have a separate card for every single image you want to animate.  Lock
  305. the screen, push the current card, go to the card with the desired image,
  306. select the lasso tool, and drag around the four corners of the window.  Since
  307. nothing else is on the card, this will select only the desired image.  Copy it,
  308. pop a card, paste the image, unlock the screen, and then drag your image around.
  309.  
  310.  
  311. ----------------------------------------------------------------------
  312. From: julian@riacs.edu (Julian E Gomez)
  313. Subject: Re: Animate?
  314. Date: 29 May 88 04:23:34 GMT
  315.  
  316. " What is the recommended method for animating in hypercard.  I tried
  317. " going to successive cards in a stack, waiting a few ticks at each
  318. " card, starting from the openCard handler of the first card.  After about 6
  319. " cards, however, I get the error "Too Much Recursion".  Why do I get
  320. " this error and what does it mean?
  321.  
  322. Wouldn't it be easier (admittedly more expensive) to use
  323. the VideoWorks HyperCard driver?
  324.  
  325. ----------------------------------------------------------------------
  326. From: boz@eleazar.dartmouth.edu (John Boswell)
  327. Subject: "set name of target" problem
  328. Date: 31 May 88 04:49:03 GMT
  329.  
  330.         I've been trying to get the "popup menus" demonstration from the
  331. latest MacTutor to work.  Everything works fine, with the following
  332. exception:
  333.  
  334. set editbkgnd to true
  335. domenu "New Field"
  336. set name of bkgnd field "New Field" to theName
  337.  
  338.         This doesn't work, since unlike "New Button", there is no default
  339. name for a "New Field".  Thus I have to put the following line after
  340. domenu:
  341.  
  342. set the name of the target to "New Field"
  343.  
  344. but this doesn't work as expected!!!  It seems that what is returned for
  345. "target" is the CARD id!!!  If I do:
  346.  
  347. get the target
  348. put it
  349.  
  350. after domenu, i get "card id 3276" or whatever in the msg box!!!
  351. What gives???  HOW do I set the name of this bkgnd field to "New Field" so
  352. the rest of this script will work???
  353.  
  354. ----------------------------------------------------------------------
  355. From: edmoy@violet.berkeley.edu
  356. Subject: Re: "set name of target" problem
  357. Date: 31 May 88 17:20:32 GMT
  358.  
  359. >What gives???  HOW do I set the name of this bkgnd field to "New Field" so
  360. >the rest of this script will work???
  361.  
  362. I think this should work.  Try:
  363.  
  364.     set name of last bkgnd field to theName
  365.  
  366. This relies on new fields being put last in the list.
  367.  
  368. ----------------------------------------------------------------------
  369. From: jgreely@kazoo.cis.ohio-state.edu (J Greely)
  370. Subject: Re: "set name of target" problem
  371. Date: 31 May 88 17:46:30 GMT
  372.  
  373. >set the name of the target to "New Field"
  374.  
  375. >but this doesn't work as expected!!!
  376.  
  377. Ah, yes.  "Name of the target".  I ran into this mess when I wanted to
  378. say "number of lines in the target", which returns 1.  The correctly
  379. convoluted syntax turned out to be "number of lines in field short name
  380. of the target".  Unfortunately, your field doesn't have a name.
  381.  
  382.   My initial suggestion was that you try 'set the name of field id the
  383. target to "New Field"'.  This is wrong.  Firing up HyperCard revealed
  384. that the following script achieves what you want (in 1.1):
  385.  
  386. on MouseUp
  387.   put last word of the target into temp
  388.   set name of field ID temp to "New Field"
  389. end MouseUp
  390.  
  391. If you try just saying 'set name of field ID last word of the target
  392. to "New Field"', the name will change, but the script will bomb.
  393. Apparently you cannot change "name of the target" directly.
  394.  
  395. >  It seems that what is returned for
  396. >"target" is the CARD id!!!  If I do:
  397.  
  398.   Your other problem (testing in the message box) is buried in
  399. Goodman's monster ("Volume 2 (I cut my copy in half at Part Three),
  400. pg. 557): "If you try typing _the_target_ into the message box, it
  401. will always return the current card's ID number, ..."
  402.  
  403. ----------------------------------------------------------------------
  404. From: frigo@cernvax.UUCP (frigo)
  405. Subject: Hypercard freezes after swap to 32-bit mode and back
  406. Date: 31 May 88 11:32:43 GMT
  407.  
  408. We have written to XCMD's to swap to 32-bit mode and back. The code
  409. works fine from MPW pascal. When the XCMD's are executed from within
  410. Hypercard (that is, 32-bit addressing is entered, and immediately
  411. after 24-bit addressing is restored) Hypercard freezes. We need the
  412. 32-bit mode to interface some electronics in conjunction with some
  413. physics experiment.    Any hint?
  414.  
  415. ----------------------------------------------------------------------
  416. From: dorner@uxg.cso.uiuc.edu
  417. Subject: Re: Animate?
  418. Date: 31 May 88 15:50:00 GMT
  419.  
  420. >going to successive cards in a stack, waiting a few ticks at each
  421. >card, starting from the openCard handler of the first card.  After about 6
  422. >cards, however, I get the error "Too Much Recursion".  Why do I get
  423. >this error and what does it mean?
  424.  
  425. I assume you are using something like:
  426.  
  427.         on openCard
  428.             <something> -- delay a while
  429.             go next card
  430.         end
  431.  
  432. If so, the openCard handlers are probably not getting closed.  The first
  433. card's handler doesn't complete until you are at the next card; you aren't
  434. at the next card until the openCard handler for the next card completes.
  435. The openCard handler for the next card can't complete until you are at
  436. the third card...
  437.  
  438. If this is indeed your problem, replace your openCard handlers with
  439. a simple repeat loop:
  440.  
  441.         on animate
  442.             repeat the number of cards
  443.                 <something> -- delay a while
  444.                 go next card
  445.             end repeat
  446.         end animate
  447.  
  448. This will avoid the recursion problem.
  449.  
  450. ----------------------------------------------------------------------
  451. From: benjamin_kuo@pedro.UUCP (Benjamin Kuo)
  452. Subject: Re: Animate?
  453. Date: 30 May 88 15:10:36 GMT
  454.  
  455.   Would you mind posting a little script code, specifically the waiting a
  456. few ticks, and the areas that give you "Too Much Recursion"?
  457.  
  458.   It may be your structuring of the ticks.  By the way, you really don't
  459. need to wait for many ticks when you are animating--HyperCard takes awhile,
  460. even on a larger meg machine, to load in the next card.
  461.  
  462. ----------------------------------------------------------------------
  463. From: winkler@Apple.COM (Dan Winkler)
  464. Subject: Re: "set name of target" problem
  465. Date: 1 Jun 88 14:58:15 GMT
  466.  
  467. That's right, after a doMenu "new field" you can refer the field as
  468. "last field" or "last card field" if it's a card field.  The same
  469. approach works for buttons.
  470.  
  471. The target is the object to which the message that is currently being
  472. handled was sent.  If handler "foobar" examines "the target" it will
  473. find out which object was first sent "foobar" before it inherited
  474. down to its current handler.  The target does not change during the
  475. execution of handler.  There is nothing a handler can do (you'd be
  476. surprised by what people have tried) to change what it gets when
  477. it evaluates "the target"
  478.  
  479. ----------------------------------------------------------------------
  480. From: JEREMY%BROWNVM.BITNET@MITVMA.MIT.EDU (Jeremy Bornstein)
  481. Subject: LSC XCMD help please!
  482. Date: 1 Jun 88 20:07:04 GMT
  483.  
  484. I am trying to get serious in the development of XCMDs, and am having a few
  485. problems.  The header file "HyperXcmd.h" and the file "XcmdGlue.inc.c" as
  486. provided by Apple do not work with Lightspeed C.  I succeeded in making them
  487. *compile* by changing the header file away from the MPW prototype
  488. declarations, and by changing the "MyProcPtr" typedef to an inline assembly
  489. routine-- which is where I think the problem is.  The "MyProcPtr" as it was
  490. seemed unworkable for Lightspeed, but it appears that my solution has gone
  491. astray as well.  Would someone be kind enough to send me versions of the
  492. abovementioned files which work in LSC?  (Sample code wouldn't be laughed at,
  493. either.)  Much thanks in advance for help much hoped for.
  494. Please reply to jjb@gorgo.harvard.edu, if possible, as mail on this machine
  495. (where I receive H-H) is difficult and slow for me to read.  Thanks again.
  496.  
  497. ----------------------------------------------------------------------
  498. From: ryan@CS.UCLA.EDU
  499. Subject: Help with: "Print Report..."
  500. Date: 1 Jun 88 19:18:03 GMT
  501.  
  502. I have just recently developed a database which basically keeps a list
  503. of all of our archived software. It runs perfectly except for one flaw.
  504. I developed a print button that basically does a doMenu to Print Report.
  505.  
  506.            Is there any way to save the formats you define in the
  507.            "Print Report..." setup so that every time you reboot, you
  508.            do not have to re-configure them. I am sort of looking for some
  509.            type of internal variables that will allow me to define
  510.            (within the program) how long I want each column and which
  511.            fields I want included.
  512.  
  513. ----------------------------------------------------------------------
  514. From: dan@Apple.COM (Dan Allen)
  515. Subject: Re: Hypercard freezes after swap to 32-bit mode and back
  516. Date: 1 Jun 88 21:10:52 GMT
  517.  
  518. HyperCard has known problems with running in 32-bit mode.  HyperCard
  519. will not currently run under A/UX, for example, which DOES run the Mac
  520. II in 32 bit mode.  We are looking into fixing this, but as of release
  521. 1.2, HC simply will not work in 32-bit mode.  No promises as to when...
  522.  
  523. ----------------------------------------------------------------------
  524. From: al@qiclab.UUCP (Al Peterman)
  525. Subject: Need Airport Database
  526. Date: 2 Jun 88 06:31:07 GMT
  527.  
  528.   Does anyone know where to acquire a database of airport information.
  529. What we need is the information in the Airports Facilities Directory in
  530. a format that can be converted to MacIntosh Hypercard.  Essentials include
  531. latitude, longitude, airport name, identifier and hopefully runway lenghts.
  532. It would be nice to have any other info available such as radio frequencies,
  533. altitude etc.
  534.  
  535.   If neccessary, we can convert from IBM format data, if we can get the
  536. data in IBM format.  That will require some conversion work, but ought to
  537. be possible...
  538.  
  539. ----------------------------------------------------------------------
  540. From: dalea@cerebus.UUCP (Dale M. Arends X5706)
  541. Subject: Print Report Problem...
  542. Date: 2 Jun 88 14:27:46 GMT
  543.  
  544. I have a small stack that consists of 1 background and 45 cards.  The
  545. background has about 10 fields for (unlocked) text.  When I try to
  546. Print Report... it says that it prepares 2 pages, but when actually printing,
  547. the first page is blank except for the header and footer.  The second page
  548. prints ok and starts from card 24, as it should.  I have selected 7 of
  549. the 10 fields to be printed.
  550.  
  551. If I change the format from Rows to 2x2 Columns, all of the data is printed.
  552.  
  553. Does anyone have any idea what is wrong?  Thanks..
  554.  
  555. ----------------------------------------------------------------------
  556. From: martin@home.csc.ti.com (Steven Martin)
  557. Subject: Bug in HC 1.2
  558. Date: 2 Jun 88 19:10:32 GMT
  559.  
  560. Using Hypercard vers 1.2 I have found that the Command-Option-B
  561. shortcut to edit the background script (and the card and script
  562. shortcuts) don't work under Multifinder.  All I get is a beep.  They
  563. work fine with just Finder.
  564.  
  565. Can someone verify this bug or do I have some conflict with an init.
  566.  
  567. ----------------------------------------------------------------------
  568. From: bobg+@andrew.cmu.edu (Robert Steven Glickstein)
  569. Subject: More naive user help needed
  570. Date: 3 Jun 88 09:44:30 GMT
  571.  
  572. I cannot seem to find this anywhere in the docs.
  573.  
  574. I have a stack where, when you click the mouse inside a field, a picture is
  575. supposed to be placed at the clickLoc.  I'd like to do this by having the
  576. picture on its own card.  When the user clicks, the screen gets locked, the
  577. card gets pushed, the picture card is fetched, the picture copied, the card
  578. popped, and the picture pasted back in the right spot.
  579.  
  580. I cannot figure out how to place the picture in the right spot.  When you do a
  581. domenu "Paste Picture", where does hypercard put it?  If I knew, I could drag
  582. it to where I wanted it.  What's the answer?
  583.  
  584.  
  585. ACTION> lis 2